翻訳と辞書
Words near each other
・ Suffield National Wildlife Area
・ Suffield Point
・ Suffield Public Schools
・ Suffield Township, Portage County, Ohio
・ Suffield University
・ Suffield, Alberta
・ Suffield, Connecticut
・ Suffield, Norfolk
・ Suffield, North Yorkshire
・ Suffield-cum-Everley
・ Suffix
・ Suffix (disambiguation)
・ Suffix (name)
・ Suffix array
・ Suffix automaton
Suffix tree
・ Suffix tree clustering
・ Suffixaufnahme
・ Suffixed routes of British Columbia Highway 97
・ Suffixes in Hebrew
・ Sufflamen
・ Sufflamen bursa
・ Sufflogobius bibarbatus
・ Suffocate (Feeder song)
・ Suffocate (J. Holiday song)
・ Suffocate (King Adora song)
・ Suffocate (Motograter song)
・ Suffocate Me
・ Suffocating the Bloom
・ Suffocating Under Words of Sorrow (What Can I Do)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Suffix tree : ウィキペディア英語版
Suffix tree

In computer science, a suffix tree (also called PAT tree or, in an earlier form, position tree) is a compressed trie containing all the suffixes of the given text as their keys and positions in the text as their values. Suffix trees allow particularly fast implementations of many important string operations.
The construction of such a tree for the string S takes time and space linear in the length of S. Once constructed, several operations can be performed quickly, for instance locating a substring in S, locating a substring if a certain number of mistakes are allowed, locating matches for a regular expression pattern etc. Suffix trees also provide one of the first linear-time solutions for the longest common substring problem. These speedups come at a cost: storing a string's suffix tree typically requires significantly more space than storing the string itself.
==History==
The concept was first introduced by , which Donald Knuth subsequently characterized as "Algorithm of the Year 1973". The construction was greatly simplified by
, and also by . Ukkonen provided the first online-construction of suffix trees, now known as Ukkonen's algorithm, with running time that matched the then fastest algorithms.
These algorithms are all linear-time for a constant-size alphabet, and have worst-case running time of O(n\log n) in general.
gave the first suffix tree construction algorithm that is optimal for all alphabets. In particular, this is the first linear-time algorithm
for strings drawn from an alphabet of integers in a polynomial range. Farach's algorithm has become the basis for new algorithms for constructing both suffix trees and suffix arrays, for example, in external memory, compressed, succinct, etc.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Suffix tree」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.